Skip to contentMethod: PrinterException(String, Exception)
      1: package printer;
2: 
3: /**
4:  * An Exception for all Exceptions caused by printing files.
5:  * 
6:  * @author hfw410 - Philipp Rammos
7:  * 
8:  */
9: public class PrinterException extends Exception {
10: 
11:         /**
12:          * generated serialVersionUID.
13:          */
14:         private static final long serialVersionUID = 8598723461205339624L;
15: 
16:         /**
17:          * Constructor for creating an Exception for all Exceptions caused by printing files.
18:          * 
19:          * @param causeE
20:          *            The original exception caused by java.
21:          * @param message
22:          *            The message to set.
23:          */
24:         public PrinterException(final String message, final Exception causeE) {
25:                 super(message, causeE);
26:         }
27: 
28: }